home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene1_2.dir / 00008_entrance&eyes&nippleRollOvers.ls < prev    next >
Encoding:
Text File  |  1999-03-01  |  877 b   |  41 lines

  1. global gGuyTextList
  2.  
  3. on enterFrame
  4.   if rollOver(4) then
  5.     cursor([member("pointy").memberNum, member("pointy_mask").memberNum])
  6.   end if
  7.   if rollOver(3) then
  8.     if gGuyTextList = [:] then
  9.       go("guyRoll_1")
  10.     else
  11.       if getaProp(gGuyTextList, #a) = 1 then
  12.         go("guyRoll_2")
  13.       else
  14.         if getaProp(gGuyTextList, #b) = 2 then
  15.           go("guyRoll_3")
  16.         else
  17.           if getaProp(gGuyTextList, #c) = 3 then
  18.             go("guyRoll_3")
  19.           end if
  20.         end if
  21.       end if
  22.     end if
  23.     set the member of sprite 7 to member("eyesLOOP")
  24.   end if
  25.   if rollOver(5) then
  26.     go("nipples")
  27.     set the member of sprite 7 to member("eyesLOOP")
  28.   end if
  29.   if rollOver(6) then
  30.     go("nipples")
  31.     set the member of sprite 7 to member("eyesLOOP")
  32.   end if
  33.   if not rollOver(4) then
  34.     cursor(-1)
  35.   end if
  36. end
  37.  
  38. on exitFrame
  39.   go(the frame)
  40. end
  41.